" stylish progress bar"
Bootstrap 3.0.0 Snippet by ALIMUL AL RAZY

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="progress-bar-outer" style="background: #dceeef;">
<div class="progress-inner">
<div class="progress" style="background: #00b7f9;">
<div class="progress-bar" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" style="width: 80%;"></div>
</div>
<div class="progress-value">80%</div>
</div>
</div>
<div class="progress-bar-outer" style="background: #e0e8d8;">
<div class="progress-inner">
<div class="progress" style="background: #92c26a;">
<div class="progress-bar" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" style="width: 65%;"></div>
</div>
<div class="progress-value">65%</div>
</div>
</div>
</div>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.progress-bar-outer{
margin-bottom: 20px;
border-radius: 30px;
padding: 20px;
border: 1px solid rgba(50, 50, 50, 0.10);
}
.progress-bar-outer:last-child{
margin-bottom: 0;
}
.progress-bar-outer .progress-inner{
background: #e2eef4;
border-radius: 20px;
padding: 25px;
box-shadow: inset 0 0 3px 3px rgba(50, 50, 50, 0.20);
position: relative;
}
.progress-bar-outer .progress{
height: 27px;
margin: 0;
padding: 4px 0;
border-radius: 10px;
position: relative;
}
.progress-bar-outer .progress-bar{
box-shadow: none;
background: transparent;
animation: progress 4s;
}
.progress-bar-outer .progress:before{
content: "\f111";
font-family: fontawesome;
position: absolute;
top: 4px;
color: #fff;
}
.progress-bar-outer .progress-value{
position: absolute;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: